/* Reset básico */
* {
    font-family: 'Wellfleet', cursive; 
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    background: url('./Crash\ Bandicoot\ Loop\ GIF\ by\ Xbox.gif');
    background-size: cover;
  }

  #background-video {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
  }
 
 .logo {
  position: absolute;
  top: 10px;             /* mantém a logo no topo */
  left: 50%;              /* centraliza horizontalmente */
  transform: translateX(-50%);
  width: 41%;           /* Aumente o tamanho aqui */
  max-width: 95%;         /* Garante responsividade */
  z-index: 2;
}

p{
  text-align: center;
}

.menu {
  position: absolute;
  top: 45%; /* ajuste a posição vertical */
  left: 10%; /* agora alinhado à esquerda */
  display: flex;
  flex-direction: column;
  gap: 30px; /* espaço entre os botões */
  z-index: 2;
}

.btn {
  background-color: #e24b3c;
  color: black;
  font-family: 'Courier New', monospace;
  font-weight: bold;
  font-size: 19.2px; 
  padding: 6.4px 25.5px; 
  border: 3.8px solid #ffc14c; 
  border-radius: 12.75px; 
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 275px; /* largura maior */
  box-shadow: 6.4px 6.4px #8b2f2f; 
  cursor: pointer;
  transition: transform 0.2s;
}

.btn img {
  width: 70px; 
  height: 52px; 
  margin-left: 5px;
}

.btn:hover {
  transform: scale(1.05);
}

@media (max-width: 768px) {
  .btn {
    width: 90%;
    font-size: 11.7px; 
  }
}



/* ----------------------------------*/

/* Modal de C */
.modal {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0, 0, 0, 0.7);
  justify-content: center;
  align-items: center;
  z-index: 10;
}

.modal-content {
  background-color: #e24b3c;
  color: black;
  padding: 30px;
  border-radius: 15px;
  text-align: center;
  font-size: 20px;
  font-weight: bold;
  border: 3px solid #ffc14c;
  box-shadow: 5px 5px #8b2f2f;
  max-width: 90%;
}

.close-btn {
  margin-top: 20px;
  padding: 10px 20px;
  background-color: #ffc14c;
  border: none;
  border-radius: 10px;
  font-weight: bold;
  cursor: pointer;
}